home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1995 June / MacFormat 25.iso / Shareware City / Developers / OutOfPhase1.1 Source / OutOfPhase Folder / ExportWAVSample.h < prev    next >
Text File  |  1994-05-13  |  673b  |  28 lines

  1. /* ExportWAVSample.h */
  2.  
  3. #ifndef Included_ExportWAVSample_h
  4. #define Included_ExportWAVSample_h
  5.  
  6. /* ExportWAVSample module depends on */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11. /* SampleStorageActual */
  12. /* Memory */
  13. /* Files */
  14. /* Alert */
  15. /* BufferedFileOutput */
  16. /* SampleConsts */
  17.  
  18. /* forwards */
  19. struct SampleStorageActualRec;
  20.  
  21. /* this routine saves the data in the provided sample storage object as a WAVE */
  22. /* formatted file.  it handles any error reporting to the user.  the object is */
  23. /* NOT disposed, so the caller has to do that. */
  24. void                                ExportWAVSample(struct SampleStorageActualRec* TheSample,
  25.                                             long SamplingRate);
  26.  
  27. #endif
  28.